Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new ContextMatic plugin to Awesome Copilot, providing an MCP server configuration plus two skills (onboarding + integration) and registering the plugin/skills in the repository’s generated docs and marketplace metadata.
Changes:
- Introduces two new skills:
/integrate-context-maticand/onboard-context-matic. - Adds a new
plugins/context-matic/plugin with README, MCP server config, and plugin metadata. - Updates skills/plugins indices and marketplace listing to include the new additions.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| skills/onboard-context-matic/SKILL.md | New interactive onboarding/tour skill for the ContextMatic MCP server. |
| skills/integrate-context-matic/SKILL.md | New workflow skill intended to guide end-to-end third-party API integration via ContextMatic tools. |
| plugins/context-matic/README.md | Plugin documentation describing tools, supported APIs, and usage examples. |
| plugins/context-matic/.mcp.json | MCP server registration/config for the plugin. |
| plugins/context-matic/.github/plugin/plugin.json | Plugin metadata (name/description/version/keywords/skill references). |
| docs/README.skills.md | Adds the two new skills to the skills index table. |
| docs/README.plugins.md | Adds the new plugin to the plugins index table. |
| .github/plugin/marketplace.json | Registers the plugin in the marketplace list used by tooling/CI. |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…c/awesome-copilot into add-context-matic-plugin
Contributor
🔍 Skill Validator Results3 resource(s) checked | ✅ All checks passed Full output |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
This pull request adds a new
context-maticplugin to Awesome Copilot, along with two supporting skills and the related generated marketplace and README updates.The plugin integrates APIMatic's hosted ContextMatic MCP server so GitHub Copilot can retrieve version-aware API and SDK context at runtime instead of relying on generic or outdated examples from model training data. This is aimed at third-party API integration scenarios where correctness depends on the exact API surface, authentication flow, model definitions, and endpoint contracts.
What this PR adds
context-maticplugin definition and marketplace registration.mcp.jsonthat registers the hosted ContextMatic MCP serverintegrate-context-maticskill for end-to-end third-party API integration workflowsonboard-context-maticskill for first-time discovery and guided onboardingWhy this is being added
When developers ask Copilot to integrate an external API, models often have to guess based on outdated training data or public examples that may be stale, incomplete, or mismatched to the actual SDK version in use. ContextMatic addresses that gap by grounding the agent in authoritative, SDK-native API context exposed through MCP tools.
This makes the agent more useful for API integration scenarios.
Benefits
Type of Contribution
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.